You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. 'use client'
  2. import React from 'react'
  3. import EmbeddedChatbot from '@/app/components/base/chat/embedded-chatbot'
  4. import AuthenticatedLayout from '../../components/authenticated-layout'
  5. const Chatbot = () => {
  6. return (
  7. <AuthenticatedLayout>
  8. <EmbeddedChatbot />
  9. </AuthenticatedLayout>
  10. )
  11. }
  12. export default React.memo(Chatbot)